Harmony Chain Funds Analytics via Rosetta

Chain Data Source

All data used by this script was gathered using the Harmony Rosetta-CLI fork using the parse:supply command.

The script was written quickly and is NOT optimal for parsing the data, nor is it memory friendly. If you wish to run this script yourself, you have been warned.

Loading Data

Data Format

data["blocks"] is a list of Block JSON objects (stored as a dict) order by block index.

The Block object looks like the following:

{
  "block_identifier": {
    "index": 0,
    "hash": "0xb4d158b82ac8a653c42b78697ab1cd0c6a0d9a15ab3bc34130f0b719fb174d2a"
  },
  "block_epoch": 0,
  "approx_block_rewards_so_far": 0,
  "approx_circulating_supply_so_far": 1.26e+28,
  "block_rewards": 0,
  "total_amount_deducted_from_accounts": 0,
  "total_amount_credited_from_accounts": 1.26e+28,
  "number_of_contracts_created": 0,
  "number_of_transactions": 1,
  "number_of_accounts": 1,
  "amount_transferred": 0,
  "cross_shard_amount_received": 0,
  "cross_shard_amount_sent": 0,
  "gas_fees": 0,
  "approx_number_of_unique_accounts_so_far": 1
}

Basic Stats Utils

High-level Data

Visualization

Utils

Graph Drawing

Graphs

CSV Export